home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 273_01.zip / UPCASE.CC < prev    next >
Text File  |  1993-04-04  |  222b  |  11 lines

  1. #include <ctype.h>
  2. upcase(char *str)
  3. /* This will convert the string pointed to by *str to uppercase */
  4. {
  5.    while (*str) {
  6.       if (islower(*str))
  7.          *str = toupper(*str);
  8.       str++; }
  9.    return(0);
  10. }
  11.